home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 015a / memsz160.zip / DEBUG.H < prev    next >
C/C++ Source or Header  |  1993-02-15  |  737b  |  27 lines

  1. /******************************************************************** DEBUG.H
  2.  *                                        *
  3.  *  Debugging Aids                                *
  4.  *                                        *
  5.  ****************************************************************************/
  6.  
  7. #ifndef DEBUG_H
  8. #define DEBUG_H
  9.  
  10. #include "hrtimer.h"
  11.  
  12. extern HFILE Timer ;
  13. extern BOOL Trace ;
  14.  
  15. extern VOID Debug ( HWND hwnd, char *Message, ... ) ;
  16. extern VOID Log ( char *Message, ... ) ;
  17.  
  18. extern BOOL OpenTimer ( VOID ) ;
  19. extern VOID CloseTimer ( VOID ) ;
  20. extern BOOL GetTime ( PTIMESTAMP pts ) ;
  21. extern ULONG ElapsedTime ( PTIMESTAMP ptsStart, PTIMESTAMP ptsStop, PULONG pulNs ) ;
  22.  
  23. extern PVOID AllocateMemory ( USHORT ByteCount ) ;
  24. extern VOID FreeMemory ( PVOID Memory ) ;
  25.  
  26. #endif
  27.